home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / nosvw.zip / IP < prev    next >
Text File  |  1991-09-18  |  3KB  |  87 lines

  1. ==                                                  NOSview [137]
  2. ip
  3. ==
  4.  
  5. The 'ip' commands are used for configuring and monitoring the
  6. Internet Protocol (IP).
  7.  
  8. You need to have a unique IP address before you can link in with
  9. the rest of the networked world.  The best way to get one is to
  10. ask around the local packet community and find out who your local
  11. address coordinator is.  Your local coordinator will then assign
  12. you an address from the block for your area.
  13.  
  14. IP addresses are 32-bit numbers that uniquely identify a given
  15. machine (or "host") running the TCP/IP protocol suite.  These
  16. numbers are usually broken down into four dot-separated fields of
  17. eight bits, each field being expressed as a decimal number in the
  18. range 0-255.
  19.  
  20. Thus, for example, the 32-bit binary IP address
  21.  
  22.           00101100 00000001 10000000 00001001
  23.  
  24. would be expressed as 44.1.128.9 decimal.
  25.  
  26. In some older versions of NOS, square brackets were used to
  27. indicate IP addresses; e.g. [44.1.128.9].
  28.  
  29. The worldwide allocation of IP addresses is coordinated by the
  30. Network Information Center (NIC) in the United States.  Amateur
  31. radio operators have been allocated a so-called "Class A"
  32. network, with addresses in the 44.x.x.x series.
  33.  
  34. If you have not yet obtained your IP address and want to get on
  35. the air immediately, you may temporarily use 44.128.0.x, where
  36. 'x' is a decimal number between 1 and 254.  Try to be sure that
  37. no one else in your area is using the same number.
  38.  
  39. _________________________________________________________________
  40. ip address [<ip_address> | <hostname>]
  41. _________________________________________________________________
  42. Display or set the default local IP address.  This command must
  43. be given before an 'attach' command if it is to be used as the
  44. default IP address for the interface.
  45.  
  46. The <ip_address> is in the usual dotted decimal format.
  47.  
  48. If you use the hostname to set the IP address, <hostname> must
  49. exist in the hosts file N:\DOMAIN.TXT.
  50.  
  51. >> Examples:  ip address 44.131.42.1
  52.               ip address ns9bob
  53.  
  54.  
  55. _________________________________________________________________
  56. ip rtimer [<seconds>]                                 Default: 30
  57. _________________________________________________________________
  58. Display or set the IP reassembly timeout.  The timer is re-
  59. initialised whenever progress is made in reassembling a datagram
  60. (i.e. a new fragment is received).
  61.  
  62. It is not necessary that all of the fragments belong to a
  63. datagram arrive within a single timeout interval, only that the
  64. interval between fragments be less than the timeout.
  65.  
  66. >> Example:  ip rtimer 60
  67.  
  68.  
  69. _________________________________________________________________
  70. ip status
  71. _________________________________________________________________
  72. Display Internet Protocol (IP) statistics, such as total packet
  73. counts and error counters of various types.
  74.  
  75.  
  76. _________________________________________________________________
  77. ip ttl [<hops>]                                      Default: 255
  78. _________________________________________________________________
  79. Display or set the time-to-live value placed in each outgoing IP
  80. datagram.  This limits the number of hops the datagram will be
  81. allowed to take.  The idea is to bound the lifetime of the packet
  82. should it become caught in a routing loop, so make the value
  83. slightly larger than the number of hops across the network you
  84. expect the packets to make.
  85.  
  86. >> Example:  ip ttl 10
  87.